From: Olaf Hering Date: Tue, 22 Jul 2014 07:19:17 +0000 (+0200) Subject: stubdom: fix -Wextra usage in vtpm_emulator X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4606 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=ed4ef4bf2dce354b0cdde8460698fc0b50cf8975;p=xen.git stubdom: fix -Wextra usage in vtpm_emulator If -Wextra is appended to CFLAGS it will enable all warnings. Previous options such as -Wno-unused-parameters have no effect anymore. As a result compilation will fail with gcc-4.3. Newer versions of gcc will appearently remember -Wno-* options before -Wextra. Rearrange warning options for gcc so that -Wextra comes before other -W options. This fixes compilation of stubdom in SLES11. Signed-off-by: Olaf Hering Acked-by: Samuel Thibault --- diff --git a/stubdom/Makefile b/stubdom/Makefile index c41de27486..6bea68b1d3 100644 --- a/stubdom/Makefile +++ b/stubdom/Makefile @@ -210,6 +210,7 @@ tpm_emulator-$(XEN_TARGET_ARCH): tpm_emulator-$(TPMEMU_VERSION).tar.gz patch -d $@ -p1 < vtpm-locality.patch patch -d $@ -p1 < vtpm-parent-sign-ek.patch patch -d $@ -p1 < vtpm-deepquote.patch + patch -d $@ -p1 < vtpm-cmake-Wextra.patch mkdir $@/build cd $@/build; CC=${CC} $(CMAKE) .. -DCMAKE_C_FLAGS:STRING="-std=c99 -DTPM_NO_EXTERN $(TARGET_CPPFLAGS) $(TARGET_CFLAGS) -Wno-declaration-after-statement" touch $@ diff --git a/stubdom/vtpm-cmake-Wextra.patch b/stubdom/vtpm-cmake-Wextra.patch new file mode 100644 index 0000000000..a603654667 --- /dev/null +++ b/stubdom/vtpm-cmake-Wextra.patch @@ -0,0 +1,21 @@ +--- + CMakeLists.txt | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +Index: tpm_emulator-x86_64/CMakeLists.txt +=================================================================== +--- tpm_emulator-x86_64.orig/CMakeLists.txt ++++ tpm_emulator-x86_64/CMakeLists.txt +@@ -40,10 +40,11 @@ set(TPM_STORAGE_NAME "/var/lib/tpm/tpm_e + set(TPM_DEVICE_NAME "/dev/tpm") + endif() + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) +-add_definitions(-Wall -Werror -Wno-unused-parameter -Wpointer-arith -Wcast-align -Wwrite-strings) ++add_definitions(-Wall -Werror) + if("${CMAKE_SYSTEM}" MATCHES "Linux") + add_definitions(-Wextra) + endif() ++add_definitions(-Wno-unused-parameter -Wpointer-arith -Wcast-align -Wwrite-strings) + if(USE_OPENSSL) + add_definitions(-DUSE_OPENSSL) + endif()